home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 235 / Issue 235 - September 2007 - DPCS0907DVD.ISO / Extras / NetObjects Fusion / NOF10.exe / data1.cab / FSI / lib / nof / dataobjects / tables / ecomm / TaxesTable.js < prev   
Encoding:
Text File  |  2007-04-11  |  733 b   |  21 lines

  1. function NOF_DataObjects_TaxesTable(){
  2.   this.__proto__ = NOF_DataObjects_TaxesTable.prototype;
  3.  
  4.   this.SUPER(  NOF_TableTypes.NODELESS | NOF_TableTypes.ECOMM_CATALOG, "Taxes", "Id");
  5.   this.__constructor__ =  NOF_DataObjects_TaxesTable;
  6. }
  7.  
  8. NOF_DataObjects_TaxesTable.inherits( NOF.DO.Table );{
  9.   var NOF_DataObjects_TaxesTable_DDL = new Array(
  10.     new NOF.DO.FieldInfo("Id", NOF.DO.FieldType.INTEGER, 0),
  11.     new NOF.DO.FieldInfo("Value", NOF.DO.FieldType.VARCHAR, 1)
  12.   ); 
  13.     
  14.  
  15.   NOF_DataObjects_TaxesTable.prototype.COL_ID    = 0;
  16.   NOF_DataObjects_TaxesTable.prototype.COL_VALUE = 1;  
  17.     
  18.   NOF_DataObjects_TaxesTable.prototype.getDDL = function getDDL(){
  19.     return NOF_DataObjects_TaxesTable_DDL;
  20.   }; 
  21. }